home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / REFERENC / TPR / SOURCE.EXE / DMSGBOX3.PAS < prev    next >
Pascal/Delphi Source File  |  1992-08-07  |  216b  |  10 lines

  1. { DMSGBOX3.PAS
  2.   Demonstrates use of InputBox
  3. }
  4. procedure TShell.DemoInputBox;
  5. var
  6.   Control : Word;
  7. begin
  8.   Control := InputBox('The Title', 'Enter some text:', FileName, 30);
  9. end; { TShell.DemoInputBox }
  10.